From 3eeeaba7c99cc12633fc44bef2b26fa1f438e3ba Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Tue, 16 Aug 2005 07:07:11 +0000 Subject: [PATCH] Disable xenconsoled throttling for now. --- tools/console/daemon/io.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c index f334458e55..a6d058acad 100644 --- a/tools/console/daemon/io.c +++ b/tools/console/daemon/io.c @@ -329,6 +329,7 @@ void handle_io(void) ret = select(max_fd + 1, &readfds, &writefds, 0, &tv); if (tv.tv_sec == 1 && (++num_of_writes % 100) == 0) { +#if 0 /* FIXME */ /* This is a nasty hack. xcs does not handle the control channels filling up well at all. We'll @@ -338,6 +339,7 @@ void handle_io(void) going away */ tv.tv_usec = 1000; select(0, 0, 0, 0, &tv); +#endif } enum_domains(); -- 2.30.2